home *** CD-ROM | disk | FTP | other *** search
- //=============================================================
- // CommandTrigger.
- //=============================================================
- class CommandTrigger extends Trigger placeable;
-
- //#1 Scope of the class but visible outside
- var (Message) public string StandUpMessage;
- var (Message) public string CommandMessage;
-
- //#2 Scope of the class but visible only inside
- var private string DefaultMessage;
-
- function PostBeginPlay(){
- Super.PostBeginPlay();
-
- //#3 Scope of the function, which is also
- // inside the scope of the class
- DefaultMessage = "Move yet again:";
- Message = StandUpMessage;
- }
-
-